From e547338c5c893cad053876aae922d6a3b9ab935f Mon Sep 17 00:00:00 2001 From: Steven Hand Date: Wed, 28 Mar 2007 15:58:42 +0100 Subject: [PATCH] Don't trap int3 instructions by default - can have a major overhead in certain cases, and typically not used for anything. Signed-off-by: Steven Hand --- xen/include/asm-x86/hvm/support.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xen/include/asm-x86/hvm/support.h b/xen/include/asm-x86/hvm/support.h index d8930ed3c0..6d0d7ada98 100644 --- a/xen/include/asm-x86/hvm/support.h +++ b/xen/include/asm-x86/hvm/support.h @@ -86,8 +86,7 @@ enum hval_bitmaps { EXCEPTION_BITMAP_GP ) #else #define MONITOR_DEFAULT_EXCEPTION_BITMAP \ - ( EXCEPTION_BITMAP_PG | \ - EXCEPTION_BITMAP_BP ) + ( EXCEPTION_BITMAP_PG ) #endif #define VMX_DELIVER_NO_ERROR_CODE -1 -- 2.30.2